export type LogicalOperator = "&&" | "||"; export type MathOperator = "+" | "-" | "*" | "/" | "%" | "**"; export type ComparisonOperator = "==" | "!=" | "<" | "<=" | ">" | ">="; export type BinaryOperator = LogicalOperator | MathOperator | ComparisonOperator; export declare function compareBinaryOperator(a: BinaryOperator, b: BinaryOperator): number;